NOTES
New syntax: variable assignment
first_color = 'red'
Similar to how a function can define variables in the function definition, you can define your own variables anywhere you want.
You give these variables a value using the =
character, known as the assignment operator.